home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 June / Electronic Clipper 1998-06.iso / Idea Source® / gallery.dir / 00006_Script_go the frame < prev    next >
Text File  |  1998-04-28  |  431b  |  18 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   repeat with n=32 to 35
  6.     if rollover (n) then set the visible of sprite n to false
  7.     if rollover (n) then set the visible of sprite (n+5) to true
  8.     updatestage
  9.   end repeat
  10.   
  11.   repeat with n=32 to 35
  12.     if not rollover (n) then set the visible of sprite n to true
  13.     if not rollover (n) then set the visible of sprite (n+5) to false
  14.     updatestage
  15.   end repeat
  16.   
  17. end
  18.